home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / accept.0 < prev    next >
Text File  |  1996-09-01  |  4KB  |  80 lines

  1.  
  2. ACCEPT(2)                  UNIX Programmer's Manual                  ACCEPT(2)
  3.  
  4. NNAAMMEE
  5.      aacccceepptt - accept a connection on a socket
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  9.      ##iinncclluuddee <<ssyyss//ssoocckkeett..hh>>
  10.  
  11.      _i_n_t
  12.      aacccceepptt(_i_n_t _s, _s_t_r_u_c_t _s_o_c_k_a_d_d_r _*_a_d_d_r, _i_n_t _*_a_d_d_r_l_e_n)
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      The argument _s is a socket that has been created with socket(2),  bound
  16.      to an address with bind(2),  and is listening for connections after a
  17.      listen(2).  The aacccceepptt() argument extracts the first connection request
  18.      on the queue of pending connections, creates a new socket with the same
  19.      properties of _s and allocates a new file descriptor for the socket.  If
  20.      no pending connections are present on the queue, and the socket is not
  21.      marked as non-blocking, aacccceepptt() blocks the caller until a connection is
  22.      present.  If the socket is marked non-blocking and no pending connections
  23.      are present on the queue, aacccceepptt() returns an error as described below.
  24.      The accepted socket may not be used to accept more connections.  The
  25.      original socket _s remains open.
  26.  
  27.      The argument _a_d_d_r is a result parameter that is filled in with the ad-
  28.      dress of the connecting entity, as known to the communications layer.
  29.      The exact format of the _a_d_d_r parameter is determined by the domain in
  30.      which the communication is occurring.  The _a_d_d_r_l_e_n is a value-result pa-
  31.      rameter; it should initially contain the amount of space pointed to by
  32.      _a_d_d_r; on return it will contain the actual length (in bytes) of the ad-
  33.      dress returned.  This call is used with connection-based socket types,
  34.      currently with SOCK_STREAM.
  35.  
  36.      It is possible to select(2) a socket for the purposes of doing an
  37.      aacccceepptt() by selecting it for read.
  38.  
  39.      For certain protocols which require an explicit confirmation, such as ISO
  40.      or DATAKIT, aacccceepptt() can be thought of as merely dequeuing the next con-
  41.      nection request and not implying confirmation.  Confirmation can be im-
  42.      plied by a normal read or write on the new file descriptor, and rejection
  43.      can be implied by closing the new socket.
  44.  
  45.      One can obtain user connection request data without confirming the con-
  46.      nection by issuing a recvmsg(2) call with an _m_s_g___i_o_v_l_e_n of 0 and a non-
  47.      zero _m_s_g___c_o_n_t_r_o_l_l_e_n, or by issuing a getsockopt(2) request.  Similarly,
  48.      one can provide user connection rejection information by issuing a
  49.      sendmsg(2) call with providing only the control information, or by call-
  50.      ing setsockopt(2).
  51.  
  52. RREETTUURRNN VVAALLUUEESS
  53.      The call returns -1 on error.  If it succeeds, it returns a non-negative
  54.      integer that is a descriptor for the accepted socket.
  55.  
  56. EERRRROORRSS
  57.      The aacccceepptt() will fail if:
  58.  
  59.      [EBADF]       The descriptor is invalid.
  60.  
  61.      [ENOTSOCK]    The descriptor references a file, not a socket.
  62.  
  63.      [EOPNOTSUPP]  The referenced socket is not of type SOCK_STREAM.
  64.  
  65.      [EFAULT]      The _a_d_d_r parameter is not in a writable part of the user
  66.  
  67.                    address space.
  68.  
  69.      [EWOULDBLOCK]
  70.                    The socket is marked non-blocking and no connections are
  71.                    present to be accepted.
  72.  
  73. SSEEEE AALLSSOO
  74.      bind(2),  connect(2),  listen(2),  select(2),  socket(2)
  75.  
  76. HHIISSTTOORRYY
  77.      The aacccceepptt() function appeared in 4.2BSD.
  78.  
  79. 4.2 Berkeley Distribution      December 11, 1993                             2
  80.